home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / dfue / elcheapofax / faxcmd / libfax / rcs / read.h,v < prev    next >
Text File  |  1995-03-09  |  2KB  |  138 lines

  1. head    1.3;
  2. access;
  3. symbols
  4.     OCT93:1.3;
  5. locks;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.3
  10. date    93.09.18.20.16.23;    author Rhialto;    state Exp;
  11. branches;
  12. next    1.2;
  13.  
  14. 1.2
  15. date    93.06.11.16.15.25;    author Rhialto;    state Exp;
  16. branches;
  17. next    1.1;
  18.  
  19. 1.1
  20. date    93.06.11.15.19.27;    author Rhialto;    state Exp;
  21. branches;
  22. next    ;
  23.  
  24.  
  25. desc
  26. @Prototypes for (former) read.c
  27. @
  28.  
  29.  
  30. 1.3
  31. log
  32. @Unconditional prototypes.
  33. @
  34. text
  35. @/* $Id: read.h,v 1.2 1993/06/11 16:15:25 Rhialto Exp $
  36.  * $Log: read.h,v $
  37.  * Revision 1.2  1993/06/11  16:15:25  Rhialto
  38.  * First real RCS checkin
  39.  *
  40.  */
  41. /*
  42.   read.h
  43.  
  44.   (c) Copyright 1991 by David M. Siegel.
  45.       All rights reserved.
  46.  
  47.   %W% %G% %U%
  48. */
  49.  
  50. #ifndef in_libfax_read_h
  51. #define in_libfax_read_h 1
  52.  
  53. /*
  54.   Prototypes:
  55. */
  56.  
  57. int tread(int fd, char *buf, int bufsize, int timeout);
  58. int pread(int fd, char *buf, int bufsize);
  59. int fdgets(int fd, char *buf, int bufsize);
  60. int tfdgets(int fd, char *buf, int bufsize, int timeout);
  61. int wait_for_char(int fd, char c_expect, int timeout);
  62. int wait_for_string(int fd, char *s_expect, int timeout);
  63.  
  64. #endif
  65. @
  66.  
  67.  
  68. 1.2
  69. log
  70. @First real RCS checkin
  71. @
  72. text
  73. @d1 5
  74. a5 2
  75. /* $Id$
  76.  * $Log$
  77. d23 6
  78. a28 49
  79. int tread(
  80. #ifdef _PROTO
  81.      int fd,
  82.      char *buf,
  83.      int bufsize,
  84.      int timeout
  85. #endif
  86. );
  87.  
  88. int pread(
  89. #ifdef _PROTO
  90.      int fd,
  91.      char *buf,
  92.      int bufsize
  93. #endif
  94. );
  95.  
  96. int fdgets(
  97. #ifdef _PROTO
  98.      int fd,
  99.      char *buf,
  100.      int bufsize
  101. #endif
  102. );
  103.  
  104. int tfdgets(
  105. #ifdef _PROTO
  106.      int fd,
  107.      char *buf,
  108.      int bufsize,
  109.      int timeout
  110. #endif
  111. );
  112.  
  113. int wait_for_char(
  114. #ifdef _PROTO
  115.      int fd,
  116.      char c_expect,
  117.      int timeout
  118. #endif
  119. );
  120.  
  121. int wait_for_string(
  122. #ifdef _PROTO
  123.      int fd,
  124.      char *s_expect,
  125.      int timeout
  126. #endif
  127. );
  128. @
  129.  
  130.  
  131. 1.1
  132. log
  133. @Initial revision
  134. @
  135. text
  136. @d1 3
  137. @
  138.